home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / ordemo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  223 b   |  12 lines

  1. program OrDemo;
  2. var
  3.   a, b, c: Integer;
  4. begin
  5.   if (a = 0) or (b = 0) then  { logical `or' }
  6.     c := 1
  7.   else if a or b = 0 then  { bitwise `or' }
  8.     c := 2
  9.   else
  10.     or (c, a)  { same as `c := c or a' }
  11. end.
  12.